home *** CD-ROM | disk | FTP | other *** search
- /* System-dependent definitions of various files, spool directories, etc */
-
- /* mac_files.h
- * this include file just defines the global filename storage areas that files.c
- * defines for the Macintosh version. Because the Mac needs these names to be
- * dynamic (since we determine the final absolute paths only at application launch),
- * these are handled differently from the other versions of the KA9Q code.
- *
- * NOTE: These are only the global path names. There is use of path names that will
- * be session related (like FTP stuff). Those strings are stored in other dynamic
- * structures since they are not global to NET.
- */
- extern char startup[256]; /* net.start */
- extern char userfile[256]; /* ftpusers */
- extern char hosts[256]; /* hosts.net */
- extern char mailspool[256]; /* incoming mail folder */
- extern char mailqdir[256]; /* outgoing mail folder */
- extern char mailqueue[256]; /* file names used for outgoing mail */
- extern char bmrc[256]; /* mail startup */
- extern char routeqdir[256]; /* mail startup */
- extern char alias[256]; /* the alias file */
- extern char applroot[256]; /* root folder, where NET was launched from */
- extern char logname[256]; /* logging file name */
- extern char temppath[256]; /* temp file folder */
- extern char dirnet[256]; /* dir temp file */
- #ifdef _FINGER
- extern char fingerpath[256]; /* Finger folder name */
- #endif
- #ifdef CALLBK
- extern char callbook[256]; /* Callbook server database location */
- extern char calllog[256]; /* Callbook server logfile location */
- #endif
-
- #define STARTUP "autoexec.net"
- #define USERFILE "ftpusers"
- #define HOSTS "hosts.net"
- #define MAILSPOOL "spool:mail"
- #define MAILQDIR "spool:mqueue"
- #define MAILQUEUE "spool:mqueue:*.wrk"
- #define BMRC "bm.rc"
- #define ROUTEQDIR "spool:rqueue"
- #define ALIAS "alias"
- #define FINGERPATH "finger:"
- #define TEMPPATH "spool:"
- #define DIRNET "spool:dirnet.temp"
-
-
-